home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / garage.sql < prev    next >
Text File  |  2000-05-12  |  759b  |  20 lines

  1. /* RCSVER $Id: garage.sql,v 1.5 1999-04-07 18:05:33-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        garage.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the garage table. This table contains a list of
  9. *        all garages defined to the system.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE garage
  13. (
  14.     glid        NUMBER(38),    /* Internal sw ID of garage */
  15.     garage_id    NUMBER(38),    /* User-defined garage ID */
  16.     descr        VARCHAR2(40),    /* Description of garage */
  17.     CONSTRAINT unq_garage UNIQUE (garage_id),
  18.     CONSTRAINT pk_garage PRIMARY KEY (glid)
  19. );
  20.